home
***
CD-ROM
|
disk
|
other
***
search
/
SGI Hot Mix 8
/
Hot Mix 8.iso
/
.all
/
demos
/
Lightscape
/
RemoveIt2
(
.txt
)
< prev
Wrap
Text File
|
1994-06-22
|
531b
|
31 lines
#!/bin/csh -f
set INST_DIR=LightscapeDemo
set INST_PATH=/usr/local/$INST_DIR
echo "Remove Lightscape Visualization System (y/n)? \c"
set ans=($<)
if ( $ans != 'y' ) then
echo " "
echo "... Bye."
sleep 2
exit
endif
echo " "
echo "Removing Lightscape Visualization System. Please wait, this will take"
echo "a few seconds..."
echo " "
#/bin/rm -rf $INST_PATH >& /dev/null
/bin/rm -rf $INST_PATH
echo " "
echo "Done!"
echo " "
echo "Press Enter to exit this window... \c"
set a = $<